← Index
NYTProf Performance Profile   
For /usr/share/koha/opac/cgi-bin/opac/opac-search.pl
  Run on Tue Oct 15 11:58:52 2013
Reported on Tue Oct 15 12:02:29 2013

Filename(eval 1115)[/usr/share/perl/5.10/CGI.pm:869]
StatementsExecuted 14 statements in 87µs
Eval Invoked At/usr/share/perl/5.10/CGI.pm line 869
Sibling evals1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
222112µs451µsCGI::::protocolCGI::protocol
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1
# spent 451µs (112+338) within CGI::protocol which was called 2 times, avg 225µs/call: # once (75µs+305µs) by CGI::url at line 832 of CGI.pm # once (37µs+33µs) by CGI::url at line 23 of (eval 1109)[CGI.pm:869]
package CGI; sub protocol {
229µs local($^W)=0;
322µs my $self = shift;
4213µs259µs return 'https' if uc($self->https()) eq 'ON';
# spent 59µs making 2 calls to CGI::https, avg 29µs/call
5219µs2134µs return 'https' if $self->server_port == 443;
# spent 129µs making 1 call to CGI::AUTOLOAD # spent 4µs making 1 call to CGI::server_port
6216µs2135µs my $prot = $self->server_protocol;
# spent 131µs making 1 call to CGI::AUTOLOAD # spent 4µs making 1 call to CGI::server_protocol
728µs my($protocol,$version) = split('/',$prot);
8219µs return "\L$protocol\E";
9}
10
11;